* emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
authorJohn Paul Wallington <jpw@pobox.com>
Sat, 7 Sep 2002 06:45:43 +0000 (06:45 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sat, 7 Sep 2002 06:45:43 +0000 (06:45 +0000)
* emacs-lisp/find-func.el (find-function-recenter-line): Add
custom type.  Doc fix.

lisp/ChangeLog
lisp/emacs-lisp/cl-indent.el
lisp/emacs-lisp/find-func.el

index 6c280af164788d576bac096c3b672eb0b14e3a91..2f7a8bd18de050c71b0b38e4fca8f01f001d7d61 100644 (file)
@@ -1,3 +1,10 @@
+2002-09-07  John Paul Wallington  <jpw@shootybangbang.com>
+
+       * emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
+
+       * emacs-lisp/find-func.el (find-function-recenter-line): Add
+       custom type.  Doc fix.
+
 2002-09-06  Stefan Monnier  <monnier@cs.yale.edu>
 
        * menu-bar.el (menu-bar-make-mm-toggle): New macro.
index 2ed810951d9a62a635448f3dec6f30405c716cdd..3bdb3382bc150615a9cb81509891ba0093176f9b 100644 (file)
@@ -108,7 +108,7 @@ If nil, indent backquoted lists as data, i.e., like quoted lists."
 
 
 (defun extended-loop-p (loop-start)
-  "True if an extended loop form starta at LOOP-START."
+  "True if an extended loop form starts at LOOP-START."
   (condition-case ()
       (save-excursion
        (goto-char loop-start)
index 1225333ed26201fd883324a4990a459fb24f3fcb..6e491409233d1c07bc27b70db7b6df26f9bb5510 100644 (file)
@@ -97,8 +97,9 @@ default."
 (defcustom find-function-recenter-line 1
   "The window line-number from which to start displaying a symbol definition.
 A value of nil implies center the beginning of the definition.
-See the function `center-to-window-line' for more information, and
-`find-function' and `find-variable'."
+See `find-function' and `find-variable'."
+  :type '(choice (const :tag "Center" nil)
+                integer)
   :group 'find-function
   :version "20.3")